home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Cream of the Crop 20
/
Cream of the Crop 20 (Terry Blount) (1996).iso
/
os2
/
xdsn217.zip
/
SAMPLES
/
CSET
/
c_test.c
next >
Wrap
C/C++ Source or Header
|
1996-03-05
|
271b
|
14 lines
/*
Example of multi-language programming: C function is called from M2
*/
#include <stdio.h>
int c_func(int a, int b)
{
printf("\nThis is a C function called by M2 procedure\n");
printf("c_func (%d, %d)\n", a, b);
return a+b;
}